home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / pwdmodule.c < prev    next >
C/C++ Source or Header  |  1996-12-15  |  3KB  |  131 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* UNIX password file access module */
  33.  
  34. #include "allobjects.h"
  35. #include "modsupport.h"
  36.  
  37. #include <sys/types.h>
  38. #include <pwd.h>
  39.  
  40. #ifdef AMITCP
  41. #include <proto/usergroup.h>
  42. #endif
  43.  
  44. #include "protos/pwdmodule_protos.h"
  45.  
  46. static object *mkpwent(p)
  47.     struct passwd *p;
  48. {
  49.     return mkvalue("(ssllsss)",
  50.                p->pw_name,
  51.                p->pw_passwd,
  52. #if defined(NeXT) && defined(_POSIX_SOURCE) && defined(__LITTLE_ENDIAN__)
  53. /* Correct a bug present on Intel machines in NextStep 3.2 and 3.3;
  54.    for later versions you may have to remove this */
  55.                (long)p->pw_short_pad1, /* ugh-NeXT broke the padding */
  56.                (long)p->pw_short_pad2,
  57. #else
  58.                (long)p->pw_uid,
  59.                (long)p->pw_gid,
  60. #endif
  61.                p->pw_gecos,
  62.                p->pw_dir,
  63.                p->pw_shell);
  64. }
  65.  
  66. static object *pwd_getpwuid(self, args)
  67.     object *self, *args;
  68. {
  69.     int uid;
  70.     struct passwd *p;
  71.     if (!getintarg(args, &uid))
  72.         return NULL;
  73.     if ((p = getpwuid(uid)) == NULL) {
  74.         err_setstr(KeyError, "getpwuid(): uid not found");
  75.         return NULL;
  76.     }
  77.     return mkpwent(p);
  78. }
  79.  
  80. static object *pwd_getpwnam(self, args)
  81.     object *self, *args;
  82. {
  83.     char *name;
  84.     struct passwd *p;
  85.     if (!getstrarg(args, &name))
  86.         return NULL;
  87.     if ((p = getpwnam(name)) == NULL) {
  88.         err_setstr(KeyError, "getpwnam(): name not found");
  89.         return NULL;
  90.     }
  91.     return mkpwent(p);
  92. }
  93.  
  94. static object *pwd_getpwall(self, args)
  95.     object *self, *args;
  96. {
  97.     object *d;
  98.     struct passwd *p;
  99.     if (!getnoarg(args))
  100.         return NULL;
  101.     if ((d = newlistobject(0)) == NULL)
  102.         return NULL;
  103.     setpwent();
  104.     while ((p = getpwent()) != NULL) {
  105.         object *v = mkpwent(p);
  106.         if (v == NULL || addlistitem(d, v) != 0) {
  107.             XDECREF(v);
  108.             DECREF(d);
  109.             return NULL;
  110.         }
  111.     }
  112.     return d;
  113. }
  114.  
  115. static struct methodlist pwd_methods[] = {
  116.     {"getpwuid",    pwd_getpwuid,0},
  117.     {"getpwnam",    pwd_getpwnam,0},
  118.     {"getpwall",    pwd_getpwall,0},
  119.     {NULL,        NULL}        /* sentinel */
  120. };
  121.  
  122. void
  123. initpwd()
  124. {
  125. #ifdef AMITCP
  126.     if(!checkusergrouplib()) return;
  127. #endif
  128.  
  129.     initmodule("pwd", pwd_methods);
  130. }
  131.